home *** CD-ROM | disk | FTP | other *** search
/ Voyager Presents CD-ROM's That Matter / Voyager Presents CD-ROM's That Matter.iso / pc / demos / cv / cv.dir / 00099.ls < prev    next >
Encoding:
Text File  |  1994-10-19  |  430 b   |  31 lines

  1. on myWait theTicks
  2.   set myTicks to theTicks + the ticks
  3.   repeat while myTicks >= the ticks
  4.   end repeat
  5. end
  6.  
  7. on enterFrame
  8.   cursor(200)
  9. end
  10.  
  11. on waitQT chan
  12.   if the movieRate of sprite chan = 1 then
  13.     go(the frame)
  14.   end if
  15. end
  16.  
  17. on waitSound chan
  18.   if soundBusy(chan) = 1 then
  19.     go(the frame)
  20.   end if
  21. end
  22.  
  23. on keyDown
  24.   global autoPlaying
  25.   set autoPlaying to 0
  26.   sound stop 1
  27.   sound stop 2
  28.   unLoadCast()
  29.   play done
  30. end
  31.